Start Property (Waterfall<T>)
In This Topic
Gets or sets a value that determines the value of the start bar. If start is null, start bar will not show.
Syntax
'Declaration
Public Property Start As System.Nullable(Of Integer)
'Usage
Dim instance As Waterfall(Of T)
Dim value As System.Nullable(Of Integer)
instance.Start = value
value = instance.Start
public System.Nullable<int> Start {get; set;}
public read-write property Start: System.Nullable;
public function get,set Start : System.Nullable
public: __property System.Nullable<int> get_Start();
public: __property void set_Start(
System.Nullable<int> value
);
public:
property System.Nullable<int> Start {
System.Nullable<int> get();
void set ( System.Nullable<int> value);
}
See Also